-
Notifications
You must be signed in to change notification settings - Fork 220
feat: rate limiting #1290
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: rate limiting #1290
Conversation
b8b6b02
to
93c2b1b
Compare
@@ -69,6 +69,9 @@ | |||
ReconciliationMaxInterval reconciliationMaxInterval() default @ReconciliationMaxInterval( | |||
interval = 10); | |||
|
|||
|
|||
RateLimit rateLimit() default @RateLimit; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will need to be fixed as this doesn't make any sense if users can provide their own RateLimiter
implementations…
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea is that some can configure basic rate limit, what is usuabble in most of the cases. If the default implementation does not fit, configuration overrride still can be used.
Note that this is empty by default, so there is no default rate limiter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments
Kudos, SonarCloud Quality Gate passed! |
No description provided.